home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Essentials / MPW IIGS Interfaces / AIIGSIncludes / E16.Memory < prev    next >
Encoding:
Text File  |  1990-04-03  |  1.1 KB  |  30 lines  |  [TEXT/MPS ]

  1. ; File:  E16.Memory
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-90
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. memErr EQU $0201  ; unable to allocate block
  9. emptyErr EQU $0202  ; illegal operation, empty handle
  10. notEmptyErr EQU $0203  ; an empty handle was expected for this operation
  11. lockErr EQU $0204  ; illegal operation on a locked block
  12. purgeErr EQU $0205  ; attempt to purge an unpurgable block
  13. handleErr EQU $0206  ; an invalid handle was given
  14. idErr EQU $0207  ; an invalid owner ID was given
  15. attrErr EQU $0208  ; operation illegal on block with given attributes
  16. attrNoPurge EQU $0000  ; Not purgeable
  17. attrBank EQU $0001  ; fixed bank
  18. attrAddr EQU $0002  ; fixed address
  19. attrPage EQU $0004  ; page aligned
  20. attrNoSpec EQU $0008  ; may not use special memory
  21. attrNoCross EQU $0010  ; may not cross banks
  22. attrPurge1 EQU $0100  ; Purge level 1
  23. attrPurge2 EQU $0200  ; Purge level 2
  24. attrPurge3 EQU $0300  ; Purge level 3
  25. attrPurge EQU $0300  ; test or set both purge bits
  26. attrHandle EQU $1000  ; block of master pointers
  27. attrSystem EQU $2000  ; system handle
  28. attrFixed EQU $4000  ; not movable
  29. attrLocked EQU $8000  ; locked
  30.